home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 4 / BBS in a Box - Macintosh - Volume IV (January 1992) (BBS in a Box).iso / Files / Hyper / Hyperj-Hz / HyperTest.cpt / HyperTest / HyperTest / stack.txt < prev   
Encoding:
Text File  |  1988-04-16  |  5.5 KB  |  186 lines

  1. -- stack: in
  2. -- format: 8 (HyperCard 1)
  3. -- flags: 0x0 (none)
  4. -- protect password hash: 0
  5. -- maximum user level: 5 (scripting)
  6. -- window: Rect(x1=0, y1=0, x2=0, y2=0)
  7. -- screen: Rect(x1=0, y1=0, x2=0, y2=0)
  8. -- card dimensions: w=0 h=0
  9. -- scroll: x=0 y=0
  10. -- background count: 2
  11. -- first background id: 2680
  12. -- card count: 4
  13. -- first card id: 2933
  14. -- list block id: 4809
  15. -- print block id: 3543
  16. -- font table block id: 0
  17. -- style table block id: 0
  18. -- free block count: 0
  19. -- free size: 0 bytes
  20. -- total size: 46720 bytes
  21. -- stack block size: 5120 bytes
  22. -- created by hypercard version: 0x00000000
  23. -- compacted by hypercard version: 0x00000000
  24. -- modified by hypercard version: 0x00000000
  25. -- opened by hypercard version: 0x00000000
  26. -- patterns[0]: 0x0000000000000000
  27. -- patterns[1]: 0x0000220000002200
  28. -- patterns[2]: 0x8800220088002200
  29. -- patterns[3]: 0xCC003300CC003300
  30. -- patterns[4]: 0xCC883322CC883322
  31. -- patterns[5]: 0xEE88BB22EE88BB22
  32. -- patterns[6]: 0xEECCBB33EECCBB33
  33. -- patterns[7]: 0xFFCCFF33FFCCFF33
  34. -- patterns[8]: 0xFFEEFFBBFFEEFFBB
  35. -- patterns[9]: 0xFFFFFFBBFFFFFFBB
  36. -- patterns[10]: 0x8010022001084004
  37. -- patterns[11]: 0xFFFFFFFFFFFFFFFF
  38. -- patterns[12]: 0x8822882288228822
  39. -- patterns[13]: 0x1122448811224488
  40. -- patterns[14]: 0xC4800C6843023026
  41. -- patterns[15]: 0xB130031BD8C00C8D
  42. -- patterns[16]: 0xAA00AA00AA00AA00
  43. -- patterns[17]: 0x8822552288225522
  44. -- patterns[18]: 0x8855225588552255
  45. -- patterns[19]: 0x77DD77DD77DD77DD
  46. -- patterns[20]: 0x8000000000000000
  47. -- patterns[21]: 0xAA55AA55AA55AA55
  48. -- patterns[22]: 0x038448300C020101
  49. -- patterns[23]: 0x8244394482010101
  50. -- patterns[24]: 0x8814224188412214
  51. -- patterns[25]: 0x8080413E080814E3
  52. -- patterns[26]: 0x22048C7422179810
  53. -- patterns[27]: 0xBE808808EB088880
  54. -- patterns[28]: 0x25C8328964244C92
  55. -- patterns[29]: 0xA29C41BE2AC914EB
  56. -- patterns[30]: 0x40A00000040A0000
  57. -- patterns[31]: 0x8040200002040800
  58. -- patterns[32]: 0xAA00800088008000
  59. -- patterns[33]: 0xFF80808080808080
  60. -- patterns[34]: 0x081C22C180010204
  61. -- patterns[35]: 0xFF808080FF080808
  62. -- patterns[36]: 0xF87422478F172271
  63. -- patterns[37]: 0xBF00BFBFB0B0B0B0
  64. -- patterns[38]: 0xFF7FBE5DA2418000
  65. -- patterns[39]: 0xFAF5FAF5A050A050
  66. -- checksum: 0x0
  67. ----- HyperTalk script -----
  68. on resume
  69.   getHomeInfo
  70.   pass resume -- to a resume XCMD, if present
  71. end resume
  72.  
  73. on getHomeInfo
  74.   global stacks,applications,documents,userName
  75.   set lockScreen to true
  76.   set lockMessages to true
  77.   push this card
  78.   go to card "User Preferences" of stack "Home"
  79.   put card field "User Name" into userName
  80.   set userLevel to card field "User Level"
  81.   set powerKeys to the hilite of button "Power Keys"
  82.   set blindTyping to the hilite of button "Blind Typing"
  83.   put field "paths" of card "stacks" into stacks
  84.   put field "paths" of card "applications" into applications
  85.   put field "paths" of card "documents" into documents
  86.   pop card
  87.   set lockScreen to false
  88.   set lockMessages to false
  89. end getHomeInfo
  90.  
  91.  
  92. on openstack
  93.   global blind,string,allow
  94.   gethomeinfo
  95.   set lockscreen to true
  96.   set lockmessages to true
  97.   set lockrecent to true
  98.   push card
  99.   go card 1
  100.   if card field"Quiet!" is not "True" and card field"Quiet!" is not "False" then
  101.     put empty into msg box
  102.     distmsg
  103.     if the message box is not empty then
  104.       put false into card field "Quiet!"
  105.     else
  106.       answer"Did you delete the ‚Äúdistmsg‚Äù handler?" with "Yes" or "No" or "Huh?"
  107.       if it is "Yes" then put"NEVER click ‚ÄúInitialize‚Äù! Also, don‚Äôt distribute this stack."
  108.       if it is not"Yes" then put true into card field "Quiet!" else put "False" into card field "Quiet!"
  109.     end if
  110.   end if
  111.   pop card
  112.   set lockscreen to false
  113.   set lockmessages to false
  114.   set lockrecent to false
  115.   put false into allow
  116.   put empty into string
  117.   hide msg box
  118.   hide menubar
  119.   if (the freesize of this stack) div 1024 > 40 then
  120.     put"The size of this stack is"&&(the size of this stack) div 1024& "K. It could be reduced to about"&&((the size of this stack)-(the freesize of this stack)) div 1024&"K."
  121.     answer"May I compact it?" with"No" or "Yes"
  122.     if it is "Yes" then domenu"Compact stack"
  123.     put "The size of this stack is now"&& the size of this stack div 1024&"K."
  124.   end if
  125. end openstack
  126.  
  127. on newcard
  128.   if the number of the target is the number of last card or the number of the target is 4 then
  129.     domenu"Delete Card"
  130.     put"Please don‚Äôt create a new card from there."
  131.     go card 1
  132.   end if
  133. end newcard
  134.  
  135.  
  136. --Beginning of LastPathComponent
  137. function LastPathComponent name
  138. repeat with i = the length of name down to 1
  139.   if character i of name is ":" then exit repeat
  140. end repeat
  141. if i is 1 then
  142.   if first character of name is ":" then
  143.     put 2 into i
  144.   end if
  145. else
  146.   add 1 to i -- skip the colon
  147. end if
  148. put empty into lastpath
  149. repeat with j = i to the length of name
  150.   put character j of name after lastpath
  151. end repeat
  152. return lastpath
  153. end LastPathComponent
  154. --End of LastPathComponent
  155. on Quiet
  156.   put"If you edit anything, please don‚Äôt distribute this stack."
  157.   answer"Get rid of all distribution messages?" with "Yes" or "No"
  158.   if it is "No" then exit Quiet
  159.   set lockscreen to true
  160.   set lockmessages to true
  161.   set lockrecent to true
  162.   push card
  163.   go card 1
  164.   deletemsg
  165.   go card (the number of cards - 2)
  166.   deletemsg
  167.   go next card
  168.   deletemsg
  169.   go next card
  170.   deletemsg
  171.   go card 1
  172.   put "true" into card field "Quiet!"
  173.   pop card
  174. end quiet
  175. on deletemsg
  176.   put the script of this card into script
  177.   put offset ("on choose",script) into off
  178.   add 20 to off
  179.   put"pass choose"&return after char off of script
  180.   put offset("on distmsg",script) into off
  181.   add 10 to off
  182.   put"exit distmsg"&return after char off of script
  183.   set the script of this card to script
  184. end deletemsg
  185.  
  186.